home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if "%1"=="" goto nopath
-
- if not exist %1\PROGMAN.EXE goto nopath
-
- echo.
- echo Creepy Crawlies Screensaver Installation.
- echo.
- echo Copying...
- copy creepy.scr %1 > NUL
- copy creepy.txt %1 > NUL
- echo.
- echo Installation complete.
- echo.
- echo Access the screensaver from the Windows Control Panel.
- echo.
- echo.
- goto end
-
- :nopath
- echo.
- echo To install type:
- echo.
- echo INSTALL [your windows path]
- echo.
- echo e.g. INSTALL C:\WINDOWS
- echo.
- goto end
-
-
- :end